home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / misc / fpl-v13.lha / fpl / src / fpl.fd < prev    next >
Text File  |  1994-12-12  |  3KB  |  57 lines

  1. ##base _FPLBase
  2. ##bias 30
  3. ************************************************************************
  4. *                                                                      *
  5. * fpl.library - A shared library interpreting script langauge.         *
  6. * Copyright (C) 1992-1994 FrexxWare                                    *
  7. * Author: Daniel Stenberg                                              *
  8. *                                                                      *
  9. * This program is free software; you may redistribute for non          *
  10. * commercial purposes only. Commercial programs must have a written    *
  11. * permission from the author to use FPL. FPL is *NOT* public domain!   *
  12. * Any provided source code is only for reference and for assurance     *
  13. * that users should be able to compile FPL on any operating system     *
  14. * he/she wants to use it in!                                           *
  15. *                                                                      *
  16. * You may not change, resource, patch files or in any way reverse      *
  17. * engineer anything in the FPL package.                                *
  18. *                                                                      *
  19. * This program is distributed in the hope that it will be useful,      *
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                 *
  22. *                                                                      *
  23. * Daniel Stenberg                                                      *
  24. * Ankdammsgatan 36, 4tr                                                *
  25. * S-171 43 Solna                                                       *
  26. * Sweden                                                               *
  27. *                                                                      *
  28. * FidoNet 2:201/328    email:dast@sth.frontec.se                       *
  29. *                                                                      *
  30. ************************************************************************
  31. fplAddFunction(anchor,name,id,ret,param,tags)(A0/A1/D0/D1/A2/A3)
  32. fplDelFunction(anchor,name)(A0/A1)
  33. fplExecuteFile(anchor,name,tags)(A0/A1/A2)
  34. fplExecuteScript(anchor,array,size,tags)(A0/A1/D1/A2)
  35. fplFree(anchor)(A0)
  36. fplGetErrorMsg(anchor,errnum,buffer)(A0/D0/A1)
  37. fplInit(function,tags)(A0/A1)
  38. fplReset(anchor,tags)(A0/A1)
  39. fplSend(anchor,tags)(A0/A1)
  40. fplAlloc(anchor,size)(A0/D0)
  41. fplDealloc(anchor,pointer)(A0/A1)
  42. fplConvertString(anchor,convert,buffer)(A0/A1/A2)
  43. fplAlloca(anchor,size)(A0/D0)
  44. fplDealloca(anchor,pointer)(A0/A1)
  45. fplAllocString(anchor,size)(A0/D0)
  46. fplFreeString(anchor,pointer)(A0/A1)
  47. fplOpenLib(anchor,name,version,flags)(A0/A1/D0/D1)
  48. fplCloseLib(anchor,name,flags)(A0/A1/D0)
  49. * From version 8:
  50. fplStrtol(string,base,end)(A0/D0/A1)
  51. fplLtostr(anchor,base,num)(A0/D0/D1)
  52. * From version 9:
  53. fplReference(anchor,reference,tags)(A0/A1/A2)
  54. * From version 10:
  55. fplAddVariable(anchor,name,id,type,default,tags)(A0/A1/D0/D1/A2/A3)
  56. ##end
  57.